body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, #fff6f6 0%, #fff6e6 100%);
    margin: 0;
    padding: 0;
}

.impact-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
}

.impact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
}

.impact-header .highlight {
    color: #ff5e99;
    background: linear-gradient(90deg, #ff5e99 40%, #ff9a3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Removed invalid property: text-fill-color */
}

.impact-header p {
    font-size: 1.25rem;
    color: #444;
    margin-top: 20px;
    margin-bottom: 30px;
}

.impact-header .impact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.impact-header .impact-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
}

.impact-header .impact-buttons .btn-primary {
    background: linear-gradient(90deg, #ff5e99 40%, #ff9a3c 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 94, 153, 0.15);
}

.impact-header .impact-buttons .btn-secondary {
    background: #fff;
    color: #ff5e99;
    border: 2px solid #ff5e99;
    box-shadow: 0 2px 8px rgba(255, 94, 153, 0.10);
}

.impact-header .impact-buttons .btn:hover {
    box-shadow: 0 4px 16px rgba(255, 94, 153, 0.18);
    opacity: 0.95;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.impact-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255, 94, 153, 0.08);
    padding: 36px 32px 28px 32px;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    margin: 10px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.impact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 94, 153, 0.15);
}

.impact-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe3ec 0%, #fff6e6 100%);
    font-size: 2.2rem;
    color: #ff5e99;
}

.impact-card .stat {
    font-size: 2.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.impact-card .desc {
    font-size: 1.1rem;
    color: #444;
}

/* Program Cards Section */
.programs-section {
    margin: 60px auto 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.programs-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.programs-section .highlight {
    color: #ff5e99;
    background: linear-gradient(90deg, #ff5e99 40%, #ff9a3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Removed invalid property: text-fill-color */
}

.programs-section p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.program-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(255, 94, 153, 0.08);
    padding: 28px 28px 22px 28px;
    position: relative;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 94, 153, 0.15);
}

.program-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

.program-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff5e99 0%, #ff9a3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
}

.program-badge {
    background: #f3f3f3;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 16px;
    padding: 4px 16px;
    margin-left: auto;
}

.program-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d63c7a;
    margin-bottom: 6px;
}

.program-card-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 18px;
}

.program-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.program-card-beneficiaries {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
}

.program-card-label {
    font-size: 0.95rem;
    color: #888;
    margin-left: 2px;
}

.program-card-link {
    color: #ff5e99;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.program-card-link:hover {
    color: #ff9a3c;
}

.programs-section .view-all-btn {
    display: inline-block;
    margin: 30px auto 0 auto;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff5e99 40%, #ff9a3c 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 94, 153, 0.15);
    transition: box-shadow 0.2s, background 0.2s;
}
.programs-section .view-all-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 94, 153, 0.18);
    opacity: 0.95;
}

@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    .impact-stats {
        flex-direction: column;
        gap: 20px;
    }
}


/* Join Us Section */
.join-section {
    width: 100%;
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #ea5fa3 0%, #ff9a3c 100%);
    color: #fff;
    text-align: center;
}

.join-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.join-section p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    color: #fff;
}

.join-options {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.join-option {
    flex: 1 1 220px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
}

.join-option .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: #fff;
    margin: 0 auto 18px auto;
}

.join-option-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.join-option-desc {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0;
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

.join-btn {
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    background: #fff;
    color: #ea5fa3;
    box-shadow: 0 2px 8px rgba(234, 95, 163, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
}
.join-btn.primary {
    background: #fff;
    color: #ea5fa3;
}
.join-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.join-btn:hover {
    box-shadow: 0 4px 16px rgba(234, 95, 163, 0.18);
    opacity: 0.95;
}
